home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1999 #2 / Amiga Plus CD - 1999 - No. 2.iso / System-Boost / Profi Tools / DiskSpeed / src / MakeFile < prev    next >
Makefile  |  1998-07-30  |  3KB  |  80 lines

  1. #
  2. #                          DiskSpeed v4.2
  3. #                          ScsiSpeed v4.2
  4. #                                by
  5. #                           Michael Sinz
  6. #
  7. #             Copyright (c) 1989-1992 by MKSoft Development
  8. #
  9. #            MKSoft Development
  10. #            163 Appledore Drive
  11. #            Downingtown, PA 19335
  12. #
  13. # Yes, this is yet another disk speed testing program, but with a few
  14. # differences.  It was designed to give the most accurate results of the
  15. # true disk performance in the system.  For this reason many of
  16. # DiskSpeed's results may look either lower or higher than current disk
  17. # performance tests.
  18. #
  19. ##############################################################################
  20. #                                         #
  21. #    Reading legal mush can turn your brain into guacamole!             #
  22. #                                         #
  23. #        So here is some of that legal mush:                 #
  24. #                                         #
  25. # Permission is hereby granted to distribute this program's source         #
  26. # executable, and documentation for non-commercial purposes, so long as the  #
  27. # copyright notices are not removed from the sources, executable or         #
  28. # documentation.  This program may not be distributed for a profit without   #
  29. # the express written consent of the author Michael Sinz.             #
  30. #                                         #
  31. # This program is not in the public domain.                     #
  32. #                                         #
  33. # Fred Fish is expressly granted permission to distribute this program's     #
  34. # source and executable as part of the "Fred Fish freely redistributable     #
  35. # Amiga software library."                             #
  36. #                                         #
  37. # Permission is expressly granted for this program and it's source to be     #
  38. # distributed as part of the Amicus Amiga software disks, and the         #
  39. # First Amiga User Group's Hot Mix disks.                     #
  40. #                                         #
  41. ##############################################################################
  42. #
  43. # MakeFile for DiskSpeed and ScsiSpeed
  44. #
  45.  
  46. #
  47. # ASM from Lattice
  48. .asm.o:
  49.     asm -iInclude: $*.asm
  50.  
  51. CFLAGS= -b1 -cfistq -d2 -ms0 -v -rr1 -O
  52.  
  53. .c.o:
  54.     @LC $(CFLAGS) $*
  55.  
  56. OBJS=    DiskSpeedCPU.o RenderInfo.o MakeBoxes.o MKS_list.o
  57.  
  58. LIBS=    LIB:lcr.lib LIB:small.lib
  59.  
  60. ALL:    DiskSpeed ScsiSpeed
  61.  
  62. DiskSpeed: DiskSpeed.ld
  63.     BLink FROM DiskSpeed.ld to DiskSpeed ND
  64.  
  65. DiskSpeed.ld: DiskSpeed.o $(OBJS) $(LIBS)
  66.     BLink FROM LIB:c.o DiskSpeed.o $(OBJS) TO DiskSpeed.ld LIB $(LIBS) DEFINE @_main=@_tinymain SD SC
  67.  
  68. ScsiSpeed: ScsiSpeed.ld
  69.     BLink FROM ScsiSpeed.ld to ScsiSpeed ND
  70.  
  71. ScsiSpeed.ld: ScsiSpeed.o $(OBJS) $(LIBS)
  72.     BLink FROM LIB:c.o ScsiSpeed.o $(OBJS) TO ScsiSpeed.ld LIB $(LIBS) DEFINE @_main=@_tinymain SD SC
  73.  
  74. DiskSpeed.o:    DiskSpeed.c DiskSpeed_rev.h
  75. ScsiSpeed.o:    ScsiSpeed.c DiskSpeed.c ScsiSpeed_rev.h
  76.  
  77. version:
  78.     BumpRev 4 DiskSpeed_rev
  79.     BumpRev 4 ScsiSpeed_rev
  80.